home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
graphicsUndo.subproj
/
ArrowGraphicsChange.m
< prev
next >
Wrap
Text File
|
1992-02-09
|
536b
|
32 lines
#import "drawundo.h"
@interface ArrowGraphicsChange(PrivateMethods)
@end
@implementation ArrowGraphicsChange
- initGraphicView:aGraphicView lineArrow:(int)anArrowValue
{
[super initGraphicView:aGraphicView];
arrowValue = anArrowValue;
return self;
}
- (const char *)changeName
{
return NXLocalStringFromTable("Operations", "Arrows", NULL, "The operation of adding or removing arrows from a line.");
}
- changeDetailClass
{
return [ArrowChangeDetail class];
}
- (int)lineArrow
{
return arrowValue;
}
@end